home *** CD-ROM | disk | FTP | other *** search
- *** ilbmtoppm.c.old Wed Dec 11 01:55:38 1991
- --- ilbmtoppm.c Fri Apr 24 19:57:37 1992
- ***************
- *** 103,108 ****
- --- 103,118 ----
- pm_error( "EOF / read error" );
- xAsp = get_byte( ifp );
- yAsp = get_byte( ifp );
- + if ( xAsp == 0 )
- + {
- + pm_message("warning - xAspect = 0, setting to 1");
- + xAsp = 1;
- + }
- + if ( yAsp == 0 )
- + {
- + pm_message("warning - yAspect = 0, setting to xAspect (%d)", xAsp);
- + yAsp = xAsp;
- + }
- if ( pm_readbigshort( ifp, &junk ) == -1 ) /* pageWidth */
- pm_error( "EOF / read error" );
- if ( pm_readbigshort( ifp, &junk ) == -1 ) /* pageHeight */
-